home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / windows / graphs / multicon.arj / LINEVIEW.H < prev    next >
C/C++ Source or Header  |  1994-03-01  |  726b  |  33 lines

  1. // lineview.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CLineView view
  6.  
  7. class CLineView : public CView
  8. {
  9.     DECLARE_DYNCREATE(CLineView)
  10. protected:
  11.     CLineView();            // protected constructor used by dynamic creation
  12.  
  13. // Attributes
  14. public:
  15.  
  16. // Operations
  17. public:
  18.  
  19. // Implementation
  20. protected:
  21.     virtual ~CLineView();
  22.     virtual    void OnDraw(CDC* pDC);        // overridden to draw this view
  23.  
  24.     // Generated message map functions
  25. protected:
  26.     //{{AFX_MSG(CLineView)
  27.         // NOTE - the ClassWizard will add and remove member functions here.
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30. };
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33.